File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -637,7 +637,7 @@ export const makeMessagesRecvSocket = (config: SocketConfig) => {
637
637
(
638
638
// basically, we only want to know when a message from us has been delivered to/read by the other person
639
639
// or another device of ours has read some messages
640
- status > proto . WebMessageInfo . Status . DELIVERY_ACK ||
640
+ status >= proto . WebMessageInfo . Status . SERVER_ACK ||
641
641
! isNodeFromMe
642
642
)
643
643
) {
Original file line number Diff line number Diff line change @@ -316,6 +316,7 @@ export const generateMdTagPrefix = () => {
316
316
}
317
317
318
318
const STATUS_MAP : { [ _ : string ] : proto . WebMessageInfo . Status } = {
319
+ 'sender' : proto . WebMessageInfo . Status . SERVER_ACK ,
319
320
'played' : proto . WebMessageInfo . Status . PLAYED ,
320
321
'read' : proto . WebMessageInfo . Status . READ ,
321
322
'read-self' : proto . WebMessageInfo . Status . READ
You can’t perform that action at this time.
0 commit comments